
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #101820, #303841);
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.highlight {
  color: #00ffff;
}

.nav-links ul {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #14ffec;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(to bottom right, #0d7377, #14ffec);
  color: #fff;
  border-radius: 0 0 100px 100px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Section */
.services-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(20, 255, 236, 0.15);
}

.service-card i {
  font-size: 2.5rem;
  color: #14ffec;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(20, 255, 236, 0.3);
}

/* Projects Section */
.projects-section {
  text-align: center;
  padding: 60px 30px;
}

.projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.project {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(20, 255, 236, 0.1);
}

.project img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project h3 {
  padding: 15px;
  color: #14ffec;
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(20, 255, 236, 0.3);
}

/* Footer */
.footer {
  background: #0a0a0a;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 30px;
  text-align: left;
}

.footer-col h2,
.footer-col h3 {
  color: #14ffec;
  margin-bottom: 15px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #14ffec;
}

.bottom-bar {
  text-align: center;
  background: #050505;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links ul {
    display: none;
  }

  .services-section {
    flex-direction: column;
    align-items: center;
  }

  .projects {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
